home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Sprite 1984 - 1993
/
Sprite 1984 - 1993.iso
/
src
/
cmds
/
nfsmount
/
RCS
/
voiddef.h,v
< prev
Wrap
Text File
|
1989-10-10
|
1KB
|
58 lines
head 1.1;
branch ;
access ;
symbols ;
locks ; strict;
comment @ * @;
1.1
date 89.09.14.13.50.18; author douglis; state Exp;
branches ;
next ;
desc
@define void * generically.
@
1.1
log
@Initial revision
@
text
@/*
* voiddef.h --
*
* Common include for all files to define void * in the face of
* brain-damaged compilers.
*
* Copyright 1989 Regents of the University of California
* Permission to use, copy, modify, and distribute this
* software and its documentation for any purpose and without
* fee is hereby granted, provided that the above copyright
* notice appear in all copies. The University of California
* makes no representations about the suitability of this
* software for any purpose. It is provided "as is" without
* express or implied warranty.
*
* $Voiddef: /sprite/lib/forms/RCS/proto.h,v 1.2 89/01/07 04:12:44 rab Exp $ SPRITE (Berkeley)
*/
#ifndef _VOIDDEF
#define _VOIDDEF
#ifdef __STDC__
typedef void *VoidPtr;
#else /* __STDC__ */
typedef int *VoidPtr;
#endif /* __STDC__ */
#endif /* _VOIDDEF */
@